home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Programming Sound Cards
/
Programming Sound Cards.iso
/
sound_45
/
mod_disv.c
< prev
next >
Wrap
Text File
|
1995-01-01
|
3KB
|
107 lines
/* BEGIN DAVID LAI COPYRIGHT ********************************************* */
/*
(C) Copyright David Lai 1993, 1994. All rights reserved.
The source code is copyright by David Lai, however it is freely
distributable and released for unrestricted use. Users may copy or modify
this source code without charge, provided all copyright
notices remain intact in all the source code. Portions of the source code
copyright by their respective copyright holders and are covered
under different agreements, however the source code used has
specifically been marked distributable royalty-free.
You can do whatever you want with it, even charge money for it, if
you find a sucker willing to pay for it. This is not shareware, the program
is not crippled in any way, do not send money. You can e-mail comments
to the electronic mail address below, or fax to the fax number below.
If you add a feature thats useful, or do a new port, you can send
the context diffs to the e-mail address below. I may include it in
subsequent releases. Your code must specifically be marked
freely distributable, I will not include code marked otherwise.
THE SOURCE CODE IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING
THE WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR
PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE.
The source code is provided with no support and without any obligation on
the part of David Lai to assist in its use, correction,
modification or enhancement.
DAVID LAI SHALL HAVE NO LIABILITY WITH RESPECT TO THE
INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY THIS SOFTWARE
OR ANY PART THEREOF.
In no event will David Lai be liable for any lost revenue
or profits or other special, indirect and consequential damages, even if
David Lai has been advised of the possibility of such damages.
David Lai
1370 McKendrie St
San Jose, CA 95126
fax: 408-241-4615
lai%fastfood@daver.bungi.com
*/
/* END DAVID LAI COPYRIGHT ********************************************* */
static struct sample_format_info
sample_format_table[] = {
{ NULL },
{ "wav" },
{ "voc" },
{ "sam" },
{ "txt" }
};
static struct effect_info effect_info[]= {
{"Arpeggio", 2},
{"SlideUp", 1},
{"SlideDown", 1},
{"TonePortamento", 1},
{"Vibrato", 2},
{"TonePortamentoVolumeSlide", 2},
{"VibratoVolumeSlide", 2},
{"Tremolo", 2},
{"NOTUSED", -1},
{"SetSampleOffset", 1},
{"VolumeSlide", 2},
{"PositionJump", 1},
{"SetVolume", 1},
{"PatternBreak", 1},
{"Extended", 0},
{"SetSpeed", 1}
};
static struct effect_info ext_effect_info[]= {
{"SetFilter", 1},
{"FineSlideUp", 1},
{"FineSlideDown", 1},
{"GlissandoControl", 1},
{"SetVibratoWaveform", 1},
{"SetFinetune", 1},
{"JumptoLoop", 1},
{"SetTremoloWaveform", 1},
{"NOTUSED2", -1},
{"RetrigNote", 1},
{"FineVolumeSlideUp", 1},
{"FineVolumeSlideDown", 1},
{"NoteCut", 1},
{"NoteDelay", 1},
{"PatternDelay", 1},
{"InvertLoop", 1}
};
#if 0
$Id: mod_disv.c,v 1.1 1994/03/19 09:21:31 dlai Exp $
$Log: mod_disv.c,v $
* Revision 1.1 1994/03/19 09:21:31 dlai
* Initial revision
*
#endif